/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}
.no-scroll {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}


body {
    background: #050816;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    padding: 140px 0 60px;
       margin-bottom: 100px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* HEADER POSITION (overlapping hero) */
.main-header {
    position: fixed;
    width: 100%;
    top: 25px;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

/* NAVBAR PILL */
.navbar {
    width: 85%;
    max-width: 1200px;
    padding: 10px 30px;
    border-radius: 60px;
    background: rgba(15, 23, 60, 0.75);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 25px rgba(65, 105, 225, 0.25);
    border: 1px solid rgba(65, 105, 225, 0.2);
}

/* LOGO */
.logo img {
    height: 40px;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #dbe4ff;
    font-size: 15px;
    position: relative;
    transition: 0.3s;
}

/* Hover underline glow */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: royalblue;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ffffff;
}

/* CTA BUTTON */
.btn-start {
    padding: 10px 22px;
    border-radius: 30px;
    background: royalblue;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-start:hover {
    box-shadow: 0 0 15px royalblue;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* RESPONSIVE */
/* ================= MOBILE NAV FIX ================= */

@media (max-width: 900px) {

    .navbar {
        padding: 12px 20px;
        border-radius: 40px;
    }

    .nav-links {
        position: fixed;
        top: 110px;
        right: 20px;
        width: 220px;
        background: rgba(8, 15, 40, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        gap: 22px;
        border-radius: 18px;
        box-shadow: 0 0 25px rgba(65,105,225,0.35);

        /* hidden by default */
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: 0.35s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 16px;
        width: 100%;
    }

    /* hide desktop CTA on mobile */
    .cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

/* Proper mobile layout */
.navbar {
    justify-content: space-between;
}

/* Hide only links, not CTA */
.nav-links {
    position: fixed;
    top: 110px;
    right: 20px;
    width: 230px;
    background: rgba(8, 15, 40, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    gap: 22px;
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(65,105,225,0.35);

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease;
}

.nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* IMPORTANT: keep CTA visible */
.cta {
    display: block;
}

/* Order items correctly */
.logo { order: 1; }
.cta { order: 2; }
.hamburger { order: 3; }


}








/* ================= HERO ================= */

.hero {
    background: radial-gradient(circle at top, #0b1230, #050816 70%);
    color: white;
      padding: 170px 5% 90px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT */
.hero-left {
    flex: 1;
    min-width: 300px;
    animation: fadeUp 1s ease forwards;
}

.hero-title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    color: #b8c6ff;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.btn-primary {
    background: royalblue;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px royalblue;
}

.btn-secondary {
    border: 1px solid royalblue;
    color: white;
}

.btn-secondary:hover {
    background: royalblue;
}

/* STATS */
.hero-stats {
    display: flex;
    gap: 50px;
}

.stat h2 {
    color: royalblue;
    font-size: 26px;
}

.stat p {
    font-size: 14px;
    color: #c9d6ff;
}

/* RIGHT */
.hero-right {
    flex: 1;
    min-width: 300px;
    text-align: center;
    animation: fadeUp 1.2s ease forwards;
}

.hero-right img {
    width: 100%;
    max-width: 480px;
    animation: float 4s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }   
    100% { transform: translateY(0); }
}

/* ================= MOBILE ================= */

@media (max-width: 900px)



{
    
    .hero {
        padding: 120px 5% 70px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-desc {
        margin: 20px auto;
         font-size: 14px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero-right {
        margin-top: 50px;
         margin-bottom: 0px;
    }


}



/* Center buttons on mobile */

/* STATS MOBILE LAYOUT */
.hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
    text-align: center;
}

.stat-center {
    grid-column: 1 / span 2;
}


/* ===== STATS SECTION ===== */

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.stat h2 {
    color: royalblue;
    font-size: 24px;
}

.stat p {
    font-size: 14px;
    color: #c9d6ff;
}


/* ================= ABOUT SECTION ================= */
/* =========================
   ABOUT SECTION
========================= */

.about-section {
      
    padding: 90px 10%;
    background: #050816;
    color: white;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT SIDE */
.about-left {
    flex: 1;
}

.about-tag {
    display: inline-block;
    color: #6c63ff;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.about-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-description {
    color: #b5b5c3;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 10px;
    color: #d1d1e0;
}

.about-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #6c63ff, #4b47d1);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    transform: translateY(-3px);
}

/* RIGHT SIDE */
.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

/* Main Image */
.img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Small Overlapping Image */
.img-small {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 65%;
    border-radius: 20px;
    border: 5px solid #050816;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Stats Card */
.stats-card {
    position: absolute;
    top: -30px;
    right: -30px;
    background: #0b1230;
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.stats-card h3 {
    font-size: 22px;
    color: #6c63ff;
}

.stats-card p {
    font-size: 13px;
    color: #d1d1e0;
}

/* =========================
   MOBILE VERSION
========================= */

@media (max-width: 768px) {


 

    .about-container {
        flex-direction: column;
        gap: 50px;
        
    }

    .about-title {
        font-size: 30px;
    }

    .image-wrapper {
        max-width: 100%;
    }

    /* Make it look wrapped & clean */
    .img-small {
        position: absolute;
        bottom: -20px;
        left: 20px;
        width: 70%;
    }

    .stats-card {
        position: absolute;
        top: -20px;
        right: 10px;
        padding: 15px 20px;
        gap: 20px;
    }
}

.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s ease;
}

.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translateY(0);
}



/* =========================
   SERVICES SECTION
========================= */

.services-section {
    padding: 100px 8%;
    background: #050816;
    color: white;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.services-header p {
    color: #b5b5c3;
    font-size: 14px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    background: #0b1230;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(108,99,255,0.2);
    border: 1px solid rgba(108,99,255,0.3);
}

/* ICON */
.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6c63ff, #4b47d1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* TITLE */
.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* TEXT */
.service-card p {
    color: #b5b5c3;
    font-size: 14px;
    margin-bottom: 20px;
}

/* LEARN MORE */
.learn-more {
    color: #6c63ff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.learn-more:hover {
    letter-spacing: 1px;
}

/* BADGE */
.badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #ff6a6a, #ff9b6a);
    padding: 5px 15px;
    font-size: 11px;
    border-radius: 20px;
    font-weight: 600;
}

/* =========================
   MOBILE VERSION
========================= */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section {
        padding: 80px 6%;
    }
}




/* ================= CTA ================= */

.cta-section {
    padding: 60px 8%;
    background: #050816;
}

.cta-box {
    background: linear-gradient(135deg, #0b1230, #111a40);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.cta-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.cta-box p {
    color: #b5b5c3;
    margin-bottom: 30px;
}

.cta-btn {
    background: linear-gradient(135deg, #6c63ff, #4b47d1);
    padding: 14px 30px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(108,99,255,0.3);
}


/* ================= PORTFOLIO ================= */

.portfolio-section {
    padding: 100px 8%;
    background: #050816;
    color: white;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.portfolio-header p {
    color: #b5b5c3;
    font-size: 14px;
}

/* FILTER BUTTONS */

.filter-buttons {
    text-align: center;
    margin-bottom: 50px;
}

.filter-btn {
    background: #0b1230;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #6c63ff;
}

/* GRID */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: #0b1230;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
}

.portfolio-card img {
    width: 100%;
    display: block;
}

.portfolio-content {
    padding: 20px;
}

.portfolio-content h3 {
    margin-bottom: 10px;
}

.portfolio-content p {
    font-size: 14px;
    color: #b5b5c3;
}

/* Hover */

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(108,99,255,0.2);
}


/* Smooth filter animation */

.portfolio-card {
    transition: 0.6s ease;
    transform: translateY(0);
    opacity: 1;
}

.portfolio-card.hide {
    opacity: 0;
    transform: translateY(50px);
    pointer-events: none;
}

.portfolio-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .portfolio-section {
        padding: 80px 6%;
    }
}


/* ================= ALT CTA ================= */

.cta-section-alt {
    padding: 80px 8%;
    background: #050816;
}

.cta-box-alt {
    background: linear-gradient(135deg, #0b1230, #151c40);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.cta-box-alt h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.cta-box-alt p {
    color: #b5b5c3;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #6c63ff, #4b47d1);
    padding: 14px 30px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(108,99,255,0.3);
}

.btn-outline {
    padding: 14px 30px;
    border-radius: 30px;
    border: 1px solid #6c63ff;
    color: #6c63ff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #6c63ff;
    color: white;
}


/* ================= WHY US ================= */
/* ================= WHY US SECTION ================= */

.why-section {
    padding: 100px 8%;
    background: #050816;
    color: white;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.why-header p {
    color: #b5b5c3;
    font-size: 14px;
}

/* GRID */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */

.why-card {
    background: #0b1230;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);

    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card.show {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(108,99,255,0.2);
}

/* ICON */

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6c63ff, #4b47d1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* TEXT */

.why-card h3 {
    margin-bottom: 15px;
}

.why-card p {
    color: #b5b5c3;
    font-size: 14px;
    margin-bottom: 25px;
}

/* DIVIDER */

.why-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

/* STATS */

.why-stat h4 {
    font-size: 28px;
    color: #6c63ff;
}

.why-stat span {
    font-size: 13px;
    color: #b5b5c3;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-section {
        padding: 80px 6%;
    }
}


/* ===== SECTION BACKGROUND ===== */

.why-testimonial-section {
    background: #040a2d;
    padding: 100px 0;
    color: white;
}

/* ===== BOXED CONTAINER ===== */

.boxed-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= WHY SECTION ================= */

.why-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.why-left img {
    width: 100%;
}

.why-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-desc {
    color: #a0a8d8;
    margin-bottom: 30px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.why-item {
    display: flex;
    gap: 15px;
}

.check-icon {
    width: 35px;
    height: 35px;
    background: #5f5bff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Buttons */

.btn-primary {
    background: #5f5bff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #4c48e0;
}

.btn-outline {
    border: 1px solid #5f5bff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    color: #5f5bff;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #5f5bff;
    color: white;
}

/* ===== TESTIMONIAL SLIDER ===== */

.testimonial-box {
    margin-top: 100px;
    text-align: center;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-card {
    min-width: 33.33%;
    padding: 30px;
    background: #0c1440;
    border-radius: 20px;
    margin: 0 15px;
    transition: 0.4s;
}

.testimonial-card h4 {
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 14px;
    color: #7c85c5;
    display: block;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #cfd3ff;
}

/* Active center highlight */
.testimonial-card.active {
    transform: scale(1.05);
    background: #121c5a;
}

/* Dots */

.dots {
    margin-top: 30px;
}

.dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #444a8f;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dots span.active {
    background: #5f5bff;
}




/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .why-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-item {
        justify-content: center;
        text-align: left;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .why-right h2 {
        font-size: 28px;
    }

}


/* MOBILE */

@media (max-width: 992px) {

    .testimonial-card {
        min-width: 100%;
        margin: 0;
    }

}


.team-section {
    background: #040a2d;
    padding: 100px 0;
    color: white;
}

.boxed-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== TOP TEAM ===== */

.team-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.section-mini {
    color: #7c85c5;
    margin-bottom: 10px;
}

.team-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.team-left p {
    color: #a0a8d8;
    margin-bottom: 30px;
}

.team-stats {
    display: flex;
    gap: 40px;
}

.team-stats h3 {
    color: #5f5bff;
    font-size: 28px;
}

.team-stats span {
    font-size: 14px;
    color: #7c85c5;
}

/* ===== BLOB IMAGES ===== */

.team-right {
    position: relative;
    height: 400px;
}

.blob {
    width: 140px;
    height: 160px;
    object-fit: cover;
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
    position: absolute;
}

.blob1 { top: 0; left: 50px; }
.blob2 { top: 40px; right: 0; }
.blob3 { bottom: 0; left: 80px; }
.blob4 { bottom: 20px; right: 40px; }

/* ===== LEADERSHIP SLIDER ===== */

.leadership-title {
    text-align: center;
    margin-bottom: 50px;
}

.leadership-slider {
    overflow: hidden;
}

.leadership-track {
    display: flex;
    transition: transform 0.6s ease;
}

.leadership-track {
    display: flex;
    gap: 30px; /* instead of margin */
    transition: transform 0.6s ease;
}

.leader-card {
    min-width: calc(33.33% - 20px);
    background: #0c1440;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
}


.leader-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.leader-info {
    padding: 25px;
    text-align: center;
}

.leader-info span {
    color: #5f5bff;
    font-size: 14px;
}

.leader-info p {
    color: #cfd3ff;
    font-size: 14px;
    margin-top: 10px;
}

.leader-card:hover {
    transform: translateY(-10px);
}

/* Dots */

.leadership-dots {
    text-align: center;
    margin-top: 30px;
}

.leadership-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #444a8f;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.leadership-dots .active {
    background: #5f5bff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

    .team-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-stats {
        justify-content: center;
    }

    .team-right {
        margin-top: 40px;
    }

    .leader-card {
        min-width: 100%;
        margin: 0;
    }
}


.contact-section {
    background: linear-gradient(180deg, #050b2c, #040826);
    padding: 100px 0;
    color: white;
}

.boxed-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== CTA CARD ===== */

.cta-card {
    background: #0c1440;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 100px;
    border: 1px solid #1a235e;
}

.cta-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-card h2 {
    margin-bottom: 15px;
}

.cta-card p {
    color: #a0a8d8;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ===== CONTACT HEADER ===== */

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h3 {
    color: #7c85c5;
}

.contact-header p {
    font-size: 28px;
    margin: 10px 0;
}

.contact-header span {
    color: #a0a8d8;
    font-size: 14px;
}

/* ===== GRID ===== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ===== FORM CARD ===== */

.contact-form-card {
    background: #0c1440;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #1a235e;
}

.contact-form-card h3 {
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #1a235e;
    background: #060d35;
    color: white;
    margin-bottom: 20px;
}

textarea {
    height: 120px;
    resize: none;
}

.full-btn {
    width: 100%;
}

/* ===== INFO SIDE ===== */

.info-card {
    background: #0c1440;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #1a235e;
}

.info-card p {
    margin: 5px 0;
}

.info-card span {
    font-size: 13px;
    color: #7c85c5;
}

/* ===== STATS BAR ===== */

.stats-bar {
    background: #0a1238;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.stats-bar h4 {
    color: #5f5bff;
}

/* ===== SOCIAL ===== */

.social-row {
    text-align: center;
}

.social-row a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #0c1440;
    border-radius: 10px;
    margin: 0 5px;
    text-decoration: none;
    color: #5f5bff;
    border: 1px solid #1a235e;
    transition: 0.3s;
}

.social-row a:hover {
    background: #5f5bff;
    color: white;
}

/* ===== BUTTONS ===== */

.btn-primary {
    background: #5f5bff;
    padding: 12px 24px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid #5f5bff;
    padding: 12px 24px;
    border-radius: 30px;
    color: #5f5bff;
    text-decoration: none;
}

.btn-outline:hover,
.btn-primary:hover {
    opacity: 0.9;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .stats-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

}


.footer {
  background: #000000;
  color: #fff;
  padding: 70px 5% 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-col h2,
.footer-col h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #cfd3ff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cfd3ff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #3a8bfd;
  padding-left: 5px;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border: 1px solid #3a8bfd;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-right: 8px;
  color: #3a8bfd;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #3a8bfd;
  color: #fff;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: #cfd3ff;
}
.newsletter-form {
    display: flex;
    align-items: stretch;
    margin-top: 15px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
    border-radius: 6px 0 0 6px;
    box-sizing: border-box;
}

.newsletter-form button {
    padding: 0 20px;
    border: none;
    background: #5f5bff;
    color: white;
    font-size: 14px;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.footer-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #5f5bff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}


@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
